home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Shareware / Beyond Compare 3.0.10 / BCompareSetup.exe / {app} / BCompare.exe / 0 / RCDATA / THEXFINDDIALOG / THEXFINDDIALOG.txt
Text File  |  2008-11-03  |  3KB  |  121 lines

  1. inherited HexFindDialog: THexFindDialog
  2.   Left = 573
  3.   Top = 246
  4.   Caption = 'Find'
  5.   ClientHeight = 256
  6.   ClientWidth = 337
  7.   OnCreate = FormCreate
  8.   PixelsPerInch = 96
  9.   TextHeight = 13
  10.   object Panel: TUiPanel
  11.     Left = 0
  12.     Top = 0
  13.     Width = 337
  14.     Height = 256
  15.     Align = alClient
  16.     BevelOuter = bvNone
  17.     TabOrder = 0
  18.     object FindTextLbl: TUiLabel
  19.       Left = 8
  20.       Top = 8
  21.       Height = 13
  22.       Caption = '&Text to find:'
  23.       FocusControl = FindTextEdit
  24.     end
  25.     object FindTextEdit: TUiComboBox
  26.       Left = 8
  27.       Top = 24
  28.       Width = 321
  29.       Height = 21
  30.       ItemHeight = 13
  31.       TabOrder = 0
  32.       OnChange = SomethingChangedClick
  33.     end
  34.     object CaseSensitiveEdit: TUiCheckBox
  35.       Left = 16
  36.       Top = 54
  37.       Height = 17
  38.       Caption = 'Match character &case'
  39.       TabOrder = 1
  40.       OnClick = SomethingChangedClick
  41.     end
  42.     object WrapEdit: TUiCheckBox
  43.       Left = 16
  44.       Top = 74
  45.       Height = 17
  46.       Caption = 'Wra&p search'
  47.       TabOrder = 2
  48.       OnClick = SomethingChangedClick
  49.     end
  50.     object UpEdit: TUiCheckBox
  51.       Left = 16
  52.       Top = 94
  53.       Height = 17
  54.       Caption = 'Search &up'
  55.       TabOrder = 3
  56.       OnClick = SomethingChangedClick
  57.     end
  58.     object KindEdit: TUiRadioGroup
  59.       Left = 8
  60.       Top = 112
  61.       Width = 321
  62.       Height = 33
  63.       Caption = 'Kind'
  64.       Columns = 2
  65.       Items.WideStrings = (
  66.         'ASCII'
  67.         'Hex')
  68.       TabOrder = 4
  69.     end
  70.     object SidesGroupBox: TUiGroupBox
  71.       Left = 8
  72.       Top = 154
  73.       Width = 321
  74.       Height = 60
  75.       Caption = 'Sides'
  76.       TabOrder = 5
  77.       object CurSideEdit: TUiRadioButton
  78.         Left = 8
  79.         Top = 16
  80.         Height = 17
  81.         Caption = '%'
  82.         TabOrder = 0
  83.         OnClick = SomethingChangedClick
  84.       end
  85.       object AllSidesEdit: TUiRadioButton
  86.         Left = 8
  87.         Top = 36
  88.         Height = 17
  89.         Caption = 'Left, Right'
  90.         TabOrder = 1
  91.         OnClick = SomethingChangedClick
  92.       end
  93.     end
  94.     object FindBtn: TUiButton
  95.       Left = 176
  96.       Top = 224
  97.       Caption = '&Find'
  98.       Default = True
  99.       TabOrder = 6
  100.       OnClick = FindClick
  101.       AutoSize = asRight
  102.     end
  103.     object CloseBtn: TUiButton
  104.       Left = 256
  105.       Top = 224
  106.       Cancel = True
  107.       Caption = 'Close'
  108.       TabOrder = 7
  109.       OnClick = CloseClick
  110.       AutoSize = asRight
  111.     end
  112.     object AutoCloseEdit: TUiCheckBox
  113.       Left = 8
  114.       Top = 232
  115.       Height = 17
  116.       Caption = 'Close automatically'
  117.       TabOrder = 8
  118.     end
  119.   end
  120. end
  121.